home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / tags18.zip / WILDFMAK < prev   
Text File  |  1992-01-06  |  503b  |  30 lines

  1. #
  2. #
  3. # Makefile for wd.exe
  4. #
  5. # Created 03-28-91 JBK
  6. # Last Modified 01-07-92 JBK
  7. #
  8. #
  9.  
  10. CC = cl
  11.  
  12. # This is flags for optimized versions
  13. FLAGS = /AL /G0 /Ox /W4
  14. #
  15.  
  16. #
  17. # This is FLAGS for debugging versions
  18. #FLAGS = /AS /G0 /Od /W4 /Zi /qc
  19. #
  20.  
  21. wd.exe: wd.c wildfile.obj match.obj
  22.     $(CC) $(FLAGS) wd.c wildfile.obj match.obj
  23.  
  24. wildfile.obj: wildfile.c wildfile.h match.obj
  25.     $(CC) /c $(FLAGS) wildfile.c
  26.  
  27. match.obj: match.c match.h
  28.     $(CC) /DFILE_MATCH /c $(FLAGS) match.c
  29.